home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / appl / napsaterm / ascii_ctrl.h < prev    next >
Text File  |  1994-05-14  |  985b  |  50 lines

  1. /* $Id: ascii_ctrl.h,v 3.1 1994/05/11 12:33:32 ppessi Exp $
  2.  * 
  3.  * ascii_ctrl.h - DEFINEs for ASCII control characters 
  4.  *
  5.  * Author: Robert Knop <rknop@mop.caltech.edu>
  6.  *
  7.  * Copyright (c) 1994 Robert Knop
  8.  *
  9.  * Created      : Sat Jan 25 00:00:00 1994 rknop
  10.  * Last modified: Wed May 11 15:33:22 1994 ppessi
  11.  *
  12.  */
  13.  
  14. /*#define NUL 0x00*/ /*Defined in napsaprefs.h*/
  15. #define SOH 0x01
  16. #define STX 0x02
  17. #define ETX 0x03
  18. #define EOT 0x04
  19. #define ENQ 0x05
  20. #define ACK 0x06
  21. #define BEL 0x07
  22. #define BS  0x08
  23. #define HT  0x09
  24. #define LF  0x0a
  25. #define VT  0x0b
  26. #define FF  0x0c
  27. #define CR  0x0d
  28. #define SO  0x0e
  29. #define SI  0x0f
  30. #define DLE 0x10
  31. #define DC1 0x11
  32. #define DC2 0x12
  33. #define DC3 0x13
  34. #define DC4 0x14
  35. #define NAK 0x15
  36. #define SYN 0x16
  37. #define ETB 0x17
  38. #define CAN 0x18
  39. #define EM  0x19
  40. #define SUB 0x1a
  41. /*#define ESC 0x1b*/  /*Defined in nifty.h*/
  42. #define FS  0x1c
  43. #define GS  0x1d
  44. #define RS  0x1e
  45. #define US  0x1f
  46. #define SP  0x20
  47.  
  48. /*#define DEL 0x7f*/  /*Defined in nifty.h*/
  49.  
  50.